home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / misc / AmiOmega.lha / AmiOmega / UnPackDisk < prev    next >
Text File  |  1991-08-05  |  1KB  |  51 lines

  1. .K ""
  2. echo "This script will use omega.lzh from this distribution, along"
  3. echo "with a few files from your sys:c and sys:system directory to"
  4. echo "create a bootable Omega game disk.  Once you have this game"
  5. echo "disk you can also move Omega to your hard disk.  Be sure to"
  6. echo "edit the omega.cnf file appropriately if you do install it"
  7. echo "on a hard disk."
  8. echo ""
  9.  
  10. ask "Do you have a blank disk ready?"
  11. if not WARN
  12.     echo "Try again when you do ..."
  13.     echo "All Done.  Click close gadget to get rid of window."
  14.     endcli
  15. endif
  16.  
  17. ask "Is floppy drive df1: free?"
  18. if not WARN
  19.     echo "You will need to do the unpacking yourself."
  20.     echo "All Done.  Click close gadget to get rid of window."
  21.     endcli
  22. endif
  23.  
  24. echo "Formatting and unpacking disk."
  25.  
  26. sys:system/format drive df1: name Omega noicons
  27. install df1:
  28. makedir Omega:c
  29. if exists sys:c/Run
  30.     copy sys:c/Run Omega:c/Run clone quiet
  31. else
  32.     echo "Hmmm, can't find sys:c/Run, must be AmigaDos 2.0 ..."
  33. endif
  34. if exists sys:c/Stack
  35.     copy sys:c/Stack Omega:c/Stack clone quiet
  36. else
  37.     echo "Hmmm, can't find sys:c/Stack, must be AmigaDos 2.0 ..."
  38. endif
  39. copy sys:c/Copy Omega:c/Copy clone quiet
  40. copy sys:c/Delete Omega:c/Delete clone quiet
  41. if exists sys:system/FastMemFirst
  42.     copy sys:system/FastMemFirst Omega:c/FastMemFirst clone quiet
  43. else
  44.     echo "Hmmm, can't find sys:system/FastMemFirst ..."
  45. endif
  46.  
  47. :c/lharc -x -a -m x Omega.lzh Omega:
  48.  
  49. echo "All Done.  Click close gadget to get rid of window."
  50. endcli
  51.